Basic Installation Check

Run all Cells via Cell -> Run All to see, whether your Anaconda-installation works fine!


In [ ]:
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from sklearn.metrics import SCORERS

In [ ]:
print(list(SCORERS.values())[:3])

In [ ]:
x = np.linspace(1,10,19)
x

In [ ]:
y = x**3
y

In [ ]:
%matplotlib inline
plt.plot(x,y);

In [ ]:
df = pd.DataFrame({'x':x, 'y':y})
df.head(3)

In [ ]:
df.y[:3]

In [ ]:
print("Looks good!")